home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970929-19971216 / 000161_news@newsmaster….columbia.edu _Wed Oct 22 10:17:12 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA22064
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 22 Oct 1997 10:16:51 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA17821
  7.     for kermit.misc@watsun; Wed, 22 Oct 1997 10:16:50 -0400 (EDT)
  8. From: arthur@gateway.dircsa.org.au (Arthur Marsh)
  9. Newsgroups: comp.protocols.kermit.misc
  10. Subject: Re: msdos kermit and external protocols
  11. Date: 22 Oct 1997 15:19:27 +0930
  12. Organization: DIRC - Disability Information & Resource Centre - Sth Australia
  13. Lines: 65
  14. Message-ID: <62k457$svi@gateway.dircsa.org.au>
  15. References: <62fru2$ict$1@apakabar.cc.columbia.edu>
  16. NNTP-Posting-Host: apache.dircsa.org.au
  17. X-Newsreader: TIN [version 1.1 PL8]
  18. Path: news.columbia.edu!news.new-york.net!cpk-news-hub1.bbnplanet.com!news.bbnplanet.com!newsfeed.internetmci.com!164.67.42.145!awabi.library.ucla.edu!132.239.254.208!ihnp4.ucsd.edu!munnari.OZ.AU!news.mel.connect.com.au!news.ade.connect.com.au!duster.adelaide.on.net!kastagir.senet.com.au!news.adl.auslink.net!news.dircsa.org.au!news.dircsa.org.au!not-for-mail
  19. Xref: news.columbia.edu comp.protocols.kermit.misc:7940
  20.  
  21. Frank da Cruz (fdc@watsun.cc.columbia.edu) wrote:
  22. : : 
  23. : : OK, OK, I'll try to get Kermit implemented as an external protocol on my
  24. : : MS-DOS based bbs (-:.
  25. : : 
  26. : In case other readers don't know how easy this is...  There is a special
  27. : version of MS-DOS Kermit that is designed for exactly this purpose.  See
  28. : the article "MS-DOS Kermit Meets the BBS" in Kermit News #6, March 1995:
  29.  
  30. :   http://www.columbia.edu/kermit/newsn6.html#bbs
  31.  
  32. : - Frank
  33.  
  34. The thing that held me up in implementing it just then was the fact that
  35. MS-Kermit 3.15 does not suggest the "@list-name" when doing a send ?
  36.  
  37. I will get the new edition of the MS-Kermit manual sometime SOON...
  38.  
  39. What I have setup, which is completely untested is:
  40.  
  41. MSKERMIT.INI:
  42.  
  43.   SET PARITY NONE          ; Usually no parity on BBS
  44.   SET BLOCK 3              ; CRC checking for security 
  45.   SET RECEIVE PACKET 2000  ; Long packets from client, upper limit
  46.   SET WINDOW 4             ; Sliding windows, upper limit
  47.   SET FILE TYPE BINARY     ; Fine for all DOS to DOS transfers(*)
  48.   SET CONTROL UNPREFIX ALL ; Unprefix all control characters except...
  49.   SET CON P 0 1 3 13 17 19 129 131 141 145 147
  50.   SET RECEIVE PATH OFF     ; Restrict uploads to current directory
  51.   SET FILE COLL OVERWRITE  ; Incoming files overwrite old files of same name
  52.   SET CARRIER ON           ; Recover from hangups immediately
  53.   SET FILE DISPLAY QUIET   ; No file transfer display
  54.   SET BELL OFF             ; Be quiet
  55.   SET EXIT WARNING OFF     ; Unattended, don't ask for permission to exit
  56.   LOG TRANSACTION          ; Log transfers to TRANSACT.LOG if desired(**)
  57.   DEFINE BSEND SET FILE TYPE BINARY, SEND \%1 ; Use macros for command
  58.   DEFINE TSEND SET FILE TYPE TEXT, SEND \%1   ; line brevity...
  59. ;  kermit set port fossil 17, bsend foo.zip
  60. ;  kermit set port 2, set speed 57600, set flow rts/cts, bsend bar.zip
  61. ;  kermit set com3 \x3e8 5, set por 3, set flow rts/cts, set sp 57, bs baz.zip
  62. ;  kermit set port bios1, tsend oofa.txt
  63.  
  64. as per the MS-Kermit documentation, then:
  65.  
  66. Protocol MS-Kermit
  67.         Type Batch
  68.         Logfile         MSK%K.log
  69.         ControlFile     MSK%K.ctl
  70.         Downloadcmd     e:\received\kermit\msk315l log trans MSK%K.log, set port fossil %P, bsend @MSK%K.ctl
  71.         Uploadcmd       e:\received\kermit\msk315l log trans MSK%K.log, set port fossil %P, r
  72.         DownloadString  %s
  73.         UploadString
  74.         DownloadKeyword Sent
  75.         UploadKeyword   Recv
  76.         FilenameWord    1
  77.         DescriptWord    0
  78. End Protocol
  79.         
  80. In Maximus 2.02's PROTOCOL.CTL
  81.  
  82. -- 
  83. Arthur Marsh, telephone +61-8-8370-2365, fax +61-8-8223-5082 
  84.               arthur@dircsa.org.au
  85. .endofsig